home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / dev / gcc / ixemsdk.lha / man / cat3 / strftime.0 < prev    next >
Text File  |  1996-09-02  |  5KB  |  133 lines

  1.  
  2. STRFTIME(3)                UNIX Programmer's Manual                STRFTIME(3)
  3.  
  4. NNAAMMEE
  5.      ssttrrffttiimmee - format date and time
  6.  
  7. SSYYNNOOPPSSIISS
  8.      ##iinncclluuddee <<ttiimmee..hh>>
  9.  
  10.      _s_i_z_e___t
  11.      ssttrrffttiimmee(_c_h_a_r _*_b_u_f, _s_i_z_e___t _m_a_x_s_i_z_e, _c_o_n_s_t _c_h_a_r _*_f_o_r_m_a_t,
  12.              _c_o_n_s_t _s_t_r_u_c_t _t_m _*_t_i_m_e_p_t_r)
  13.  
  14. DDEESSCCRRIIPPTTIIOONN
  15.      The ssttrrffttiimmee() function formats the information from _t_i_m_e_p_t_r into the
  16.      buffer _b_u_f according to the string pointed to by _f_o_r_m_a_t.
  17.  
  18.      The _f_o_r_m_a_t string consists of zero or more conversion specifications and
  19.      ordinary characters.  All ordinary characters are copied directly into
  20.      the buffer.  A conversion specification consists of a percent sign `%'
  21.      and one other character.
  22.  
  23.      No more than _m_a_x_s_i_z_e characters will be placed into the array.  If the
  24.      total number of resulting characters, including the terminating null
  25.      character, is not more than _m_a_x_s_i_z_e, ssttrrffttiimmee() returns the number of
  26.      characters in the array, not counting the terminating null.  Otherwise,
  27.      zero is returned.
  28.  
  29.      Each conversion specification is replaced by the characters as follows
  30.      which are then copied into the buffer.
  31.  
  32.      %%AA    is replaced by the locale's full weekday name.
  33.  
  34.      %%aa    is replaced by the locale's abbreviated weekday name.
  35.  
  36.      %%BB    is replaced by the locale's full month name.
  37.  
  38.      %%bb or %%hh
  39.            is replaced by the locale's abbreviated month name.
  40.  
  41.      %%CC    is replaced by the century (a year divided by 100 and truncated to
  42.            an integer) as a decimal number (00-99).
  43.  
  44.      %%cc    is replaced by the locale's appropriate date and time representa-
  45.            tion.
  46.  
  47.      %%DD    is replaced by the date in the format ``%m/%d/%y''.
  48.  
  49.      %%dd    is replaced by the day of the month as a decimal number (01-31).
  50.  
  51.      %%ee    is replaced by the day of month as a decimal number (1-31); single
  52.            digits are preceded by a blank.
  53.  
  54.      %%HH    is replaced by the hour (24-hour clock) as a decimal number
  55.            (00-23).
  56.  
  57.      %%II    is replaced by the hour (12-hour clock) as a decimal number
  58.            (01-12).
  59.  
  60.      %%jj    is replaced by the day of the year as a decimal number (001-366).
  61.  
  62.      %%kk    is replaced by the hour (24-hour clock) as a decimal number (0-23);
  63.            single digits are preceded by a blank.
  64.  
  65.      %%ll    is replaced by the hour (12-hour clock) as a decimal number (1-12);
  66.  
  67.            single digits are preceded by a blank.
  68.  
  69.      %%MM    is replaced by the minute as a decimal number (00-59).
  70.  
  71.      %%mm    is replaced by the month as a decimal number (01-12).
  72.  
  73.      %%nn    is replaced by a newline.
  74.  
  75.      %%pp    is replaced by the locale's equivalent of either ``AM'' or ``PM''.
  76.  
  77.      %%RR    is replaced by the time in the format ``%H:%M''.
  78.  
  79.      %%rr    is replaced by the locale's representation of 12-hour clock time
  80.            using AM/PM notation.
  81.  
  82.      %%TT    is replaced by the time in the format ``%H:%M:%S''.
  83.  
  84.      %%tt    is replaced by a tab.
  85.  
  86.      %%SS    is replaced by the second as a decimal number (00-60).
  87.  
  88.      %%ss    is replaced by the number of seconds since the Epoch, UCT (see
  89.            mktime(3)).
  90.  
  91.      %%UU    is replaced by the week number of the year (Sunday as the first day
  92.            of the week) as a decimal number (00-53).
  93.  
  94.      %%uu    is replaced by the weekday (Monday as the first day of the week) as
  95.            a decimal number (1-7).
  96.  
  97.      %%VV    is replaced by the week number of the year (Monday as the first day
  98.            of the week) as a decimal number (01-53).  If the week containing
  99.            January 1 has four or more days in the new year, then it is week 1;
  100.            otherwise it is week 53 of the previous year, and the next week is
  101.            week 1.
  102.  
  103.      %%WW    is replaced by the week number of the year (Monday as the first day
  104.            of the week) as a decimal number (00-53).
  105.  
  106.      %%ww    is replaced by the weekday (Sunday as the first day of the week) as
  107.            a decimal number (0-6).
  108.  
  109.      %%XX    is replaced by the locale's appropriate date representation.
  110.  
  111.      %%xx    is replaced by the locale's appropriate time representation.
  112.  
  113.      %%YY    is replaced by the year with century as a decimal number.
  114.  
  115.      %%yy    is replaced by the year without century as a decimal number
  116.            (00-99).
  117.  
  118.      %%ZZ    is replaced by the time zone name.
  119.  
  120.      %%%%    is replaced by `%'.
  121.  
  122. SSEEEE AALLSSOO
  123.      date(1),  ctime(3),  printf(1),  printf(3)
  124.  
  125. SSTTAANNDDAARRDDSS
  126.      The ssttrrffttiimmee() function conforms to ANSI C3.159-1989 (``ANSI C''). The
  127.      `%C', `%D', `%e', `%h', `%k', `%l', `%n', `%r', `%R', `%s'. `%t', `%T',
  128.      `%u', and `%V' conversion specifications are extensions.
  129.  
  130. BBUUGGSS
  131.      There is no conversion specification for the phase of the moon.
  132.  
  133.